home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / julian11.zip / ISLEAP.C < prev    next >
Text File  |  1993-01-11  |  108b  |  9 lines

  1. #include "julian.h"
  2.  
  3. int isleapyear(int year)
  4. {
  5.   if (year % 4 == 0)
  6.     return(1);
  7.   return(0);
  8. }
  9.